All Questions
4 questions
0votes
1answer
8kviews
__init__() takes 1 positional argument but 4 were given sklearn standard scaler error
I defined a class like below: ...
2votes
1answer
139views
One scaler for all features or one scaler per feature?
I have a time series with more than 30 features. For preprocessing with scikit learn do you usually use one scaler per feature or one scaler for all features that should be standardized/normalized?
7votes
2answers
994views
Best way to scale across different datasets
I have come across a peculiar situation when preprocessing data. Let's say I have a dataset A. I split the dataset into A_train ...
1vote
1answer
8kviews
How to use the same scale with new data? - scikit learn - scikit learn
How do I use the same scale used in preprocessing with new data. Actual code: ...